home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000177_news@columbia.edu _Mon Dec 25 18:27:05 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id SAA29885 for <kermit.misc@watsun>; Mon, 25 Dec 1995 18:27:04 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id SAA04127 for kermit.misc@watsun; Mon, 25 Dec 1995 18:27:03 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Failure to initialize
  8. Date: 25 Dec 1995 23:27:00 GMT
  9. Organization: Columbia University
  10. Lines: 48
  11. Message-ID: <4bnc04$40r@apakabar.cc.columbia.edu>
  12. References: <299721600038710apardoe@u.washington.edu>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <299721600038710apardoe@u.washington.edu>,
  16.  <apardoe@u.washington.edu> wrote:
  17. : I'm having a rather odd problem with CKermit 191 for OS/2. I'll admit 
  18. : right off that I don't have the book--I'd like to see Kermit run once 
  19. : before I decide whether or not I want to "buy" it. 
  20. : C-Kermit will initialize my modem with the ATQ0H0 which generates "OK"
  21. : (I assume from the modem) and then Modem Hangup OK. Then the initialization
  22. : string is sent ATwhateverwhatever and there is no response from the 
  23. : modem. My question is this: What is causing CKermit to "find" the modem 
  24. : on the first string and preventing it from "finding" the modem on the 
  25. : second? 
  26. It sounds as if the modem, upon being hung up, is reverting to some
  27. different state.  Many types of modems have options to do this, which are
  28. often governed by a command such as &Cx.
  29.  
  30. When dialing, Kermit hangs up the modem for you automatically prior to
  31. dialing to ensure that (a) it can dial, and (b) that the modem is in
  32. command mode.  But practically everything that one does in data
  33. communications is risky.  Thus, Kermit has dozens and dozens of commands
  34. that let you tailor it to nearly every conceivable set of circumstances.
  35. Hence the big thick manual -- to explain all these commands and why they
  36. are needed.
  37.  
  38. Try the following:
  39.  
  40.   SET MODEM HAYES
  41.   SET DIAL INIT ATQ0W1&D2S95=47X4S37=11&K3S82=128&Q5S36=7S46=138S38=1\13
  42.   SET PORT COM4
  43.   SET SPEED 57600
  44.   SET DIAL SPEED-MATCHING OFF
  45.   SET FLOW RTS/CTS
  46.   SET DIAL DISPLAY ON  ; <-- watch the modem dialog
  47.   SET DIAL HANGUP OFF  ; <-- don't hang up as part of the dialing process
  48.  
  49. and then DIAL a number.
  50.  
  51. If that works, fine.  If not, get back to us with specifics about what 
  52. happens in the modem dialog and we can take it from there.
  53.  
  54. : Thanks, I'd appreciate knowing what's up. There seem to be no good comm 
  55. : packages for OS/2 but Kermit looks unassuming and powerful...a rare 
  56. : combination in '95. 
  57. Thanks.
  58.  
  59. - Frank